Forum Activity for @douglas

douglas
@douglas
07/03/15 03:51:43PM
2,807 posts

Image Slider on Elastic?


Design and Skin Customization

The slide show code is in your skins/jrElastic/index.tpl, you could use that code and put it in a "Template Code" widget.
douglas
@douglas
07/03/15 03:48:49PM
2,807 posts

Background Image


Design and Skin Customization

If you are using a small image, it may not look very well if it is resized to a larger size. If it were me, I would make the background image as large as you need/want it. You can also change the repeat to no-repeat in the CSS file were the background image is being called.

For example, if your using the Ningja skin, in your skins/jrNingja/css/site.css, change this:

#wrapper {
    margin:0 auto;
    background-color: #C7C7C7;
    background-image: url('{$jrNingja_img_url}/wrapper_bckgrnd.png');
    background-attachment: fixed;
    background-position: left top;
    background-size: initial;
    background-repeat: repeat-x;}

to this:

#wrapper {
    margin:0 auto;
    background-color: #C7C7C7;
    background-image: url('{$jrNingja_img_url}/wrapper_bckgrnd.png');
    background-attachment: fixed;
    background-position: left top;
    background-size: initial;
    background-repeat: no-repeat;}

You may also want to change the background-size element to cover instead of initial.
douglas
@douglas
07/03/15 03:39:25PM
2,807 posts

release archive


Using Jamroom

You can use the ACP > Tools > Developer Tools > Tools > Rebase Modules and Rebase Skins.

I would make sure your site is not in maintenance mode, the chaching set to 0 and developer mode is turned on.

Also, if you see a white screen after using the tool, you'll want to clear your browser cache.
douglas
@douglas
07/02/15 07:10:27AM
2,807 posts

Main Page


Design and Skin Customization

That is actually the ProJam skin, but it too will have a readme file.

http://demo.jamroom.net/jrProJam/

http://demo.jamroom.net/jrProJam/skins/jrProJam/readme.html

Also, the "Install and Activate the jrComment Module!" only shows to the master admin.
douglas
@douglas
07/01/15 09:26:06AM
2,807 posts

How To Use Simple Custom Forms?


Using Jamroom

You can use this:

{jrCustomForm_embed_form name="contact_us"}

to embed a custom form. Change contact_us to the name of your custom form.
douglas
@douglas
07/01/15 09:20:27AM
2,807 posts

Create File for Download


Using Jamroom

You'll want to set the file types in your ACP > Media > File Downloads > Quota Config section.
douglas
@douglas
06/30/15 03:19:17PM
2,807 posts

Trying to get a (scrollbar)* slider on Activity Feed


Using Jamroom

As far as I know, there isn't a way to put a slider into the activity feed, since the JavaScript code would most likely be stripped out.
douglas
@douglas
06/30/15 03:15:52PM
2,807 posts

Making a log in/ sign up page


Using Jamroom

For the login form, you would use the docs:

https://www.jamroom.net/the-jamroom-network/documentation/howto/603/howto-add-the-user-login-form-to-any-page

For the signup form, I'm not 100% sure it can be done and I've not tried it myself. Is there a reason you need the signup form in another page/template?
douglas
@douglas
06/29/15 02:56:37AM
2,807 posts

Why is (invalid item ) showing ?


Using Jamroom

Are all of your modules up to date?
douglas
@douglas
06/29/15 02:54:38AM
2,807 posts

Making a log in/ sign up page


Using Jamroom

Are you using the latest Site Builder module?

If so, you can paste your code into a "Template Code" widget.
  144